/*  
    ===========================================================================================
    Colorgrid
    ===========================================================================================

    Grey:   rgb(100, 97, 97);   
    Blue: color: #07A0FF;
*/


/*  
    ===========================================================================================
    Layout
    ===========================================================================================
*/
body
{
    margin: 0px;  
    display: grid;
    grid-template-rows: 2rem auto 2rem;
    grid-template-columns: 100vw;
    min-height: 100vh;
    background-color: black;

    font-family: 'Open Sans', Helvetica, sans-serfi;
    font-size: 1rem;
    color: rgb(100, 97, 97);
}
header
{
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 0.3rem;
    font-size: 0.8rem;
}
footer
{
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 0.3rem;
    font-size: 0.8rem;
}
main
{
    grid-column: 1 / -1;
    display: grid; 
    align-content: center;    
}
#nav-head
{
    /*background-color:yellow;*/
    text-align: center;
    margin-bottom: 1.5rem;
}
nav
{   
    grid-column: 1 / -1;
    text-align: center;

    font-size: 1.2em;
}
.nav-item
{
    border: 1px solid black;
}
#content
{
    padding-left: 1rem;
    padding-right: 1rem;
}
#hackpott-logo
{
    max-width: 90vw;
    margin-left: 1rem;
    margin-right: 1rem;
}
/*  
    ===========================================================================================
    Layout-Beschränkungen
    ===========================================================================================
*/
p,.codebox,h1,h2,h3,h4,ul
{
    max-width: 70rem;
}



/*  
    ===========================================================================================
    Content-Layout
    ===========================================================================================
*/
.content-flexcenter1
{
    display: flex;
    /*align-items: center;
    background-color: blue;*/
    justify-content: center;
}

/*  
    ===========================================================================================
    Links
    ===========================================================================================
*/
a:link {text-decoration: none;color: #07A0FF;;}
a:visited {text-decoration: none;color: #07A0FF;}
a:hover {text-decoration: none;color: white;}
a:active {text-decoration: none;color: #07A0FF;}

a.a-header:link {color: #07A0FF;}
a.a-header:visited {color: #07A0FF;}
a.a-header:hover{color: white;}
a.a-header:active {color: #07A0FF;}

a.a-footer:link {color: #07A0FF;}
a.a-footer:visited {color: #07A0FF;}
a.a-footer:hover{color: white;}
a.a-footer:active {color: #07A0FF;}

a.a-nav:link {color: #07A0FF;}
a.a-nav:visited {color: #07A0FF;}
a.a-nav:hover{color: white;}
a.a-nav:active {color: #07A0FF;}

a.a-extern:link {color: blue;}
a.a-extern:visited {color: blue;}
a.a-extern:hover{color: white;}
a.a-extern:active {color: #f75f00;}

/*  
    ===========================================================================================
    Text
    ===========================================================================================
*/
h1
{
    font-size: 1.3rem;
    
}
h2
{
    font-size: 1.2rem;
    color: #07A0FF;
}
h3
{
    font-size: 1.0rem;
}
h4
{
    font-size: 1.0rem;
    font-weight: normal;
    font-style: italic;
}
.font-hl1
{
    text-decoration: underline;
}
.font-small1
{
    font-size: 0.8rem;
}
.nowrap
{
    white-space: nowrap;
}

/*  
    ===========================================================================================
    Table
    ===========================================================================================
*/
table
{
    border-collapse: collapse;
    max-width: 70rem;

}
th
{
    text-align: left;
    border-color: #07A0FF;
    border-style: solid;
    border-width: 0.1rem 0px 0.1rem 0px;
    padding: 0.3rem 0.3rem 0.3rem 0.3rem; 
}
td
{
    vertical-align: top;
    padding: 0.3rem;  
    
}

table.std tbody tr:nth-child(even){ 
    background-color: #E5E5E5;  
}

table.std table.bigvalues
{
    border-color: #07A0FF;
    border-style: solid;
    border-width: 0.0rem 0px 0.1rem 0px; 
}

table.bigvalues td
{
    border-color: #07A0FF;
    border-style: solid;
    border-width: 0rem 0px 0.1rem 0px;
}



/*  
    ===========================================================================================
    Artikel
    ===========================================================================================
*/
span.shout
{
    font-style:italic;
    display:block;
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-left: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
}
span.shout .starter
{
    color: #07A0FF;
    font-weight: bold;
}

.kackebox
{
    font-style:italic;
    display:block;
    margin-top: 1rem;
    margin-bottom: 1rem;
    margin-left: 1rem;
    font-size: 1.2rem;

}
.kackebox .starter
{
    font-weight: bold;
}
.codebox
{
    font-family:'Courier New';
    white-space: pre-wrap;
    border: 0.1em solid #07A0FF;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem;


}
.icode
{
    font-family:'Courier New';
}

/*  
    ===========================================================================================
    MEDIA
    ===========================================================================================
*/

img.std
{
    border: 0.1em solid rgb(100, 97, 97);
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
 
}

img.text
{
    border: 0.1em solid rgb(100, 97, 97);
    margin-top: 1rem;
    margin-bottom: 1rem;
    max-width: 95%;
 
}

/*  
    ===========================================================================================
    Specific
    ===========================================================================================
*/

.sentence
{
    font-size: 1.2em;
    /*margin-top: 0.2em;*/
}
